Skip to content

Commit b280b90

Browse files
committed
Update docker docs to point to ghcr.io
1 parent e0ee56b commit b280b90

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/docker.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ reccomended default values for `maintenance_work_mem` and `max_parallel_maintena
3333

3434
- default start
3535
```sh
36-
docker compose up && docker-compose logs -f
36+
docker compose up -d && docker-compose logs -f
3737

3838
docker ps | grep postgres
3939
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
@@ -63,7 +63,7 @@ To connect to different network (preprod or preview) use `NETWORK` environment v
6363

6464

6565
```
66-
NETWORK=preprod docker-compose up && docker-compose logs -f
66+
NETWORK=preprod docker-compose up -d && docker-compose logs -f
6767
```
6868

6969
### Take control
@@ -77,10 +77,10 @@ Using Docker run to demonstrate, but can be achieved using `docker-compose` too
7777
`service.command`
7878
```
7979
docker run \
80-
-v $PWD/config/network/mainnet/cardano-db-sync:/config
81-
-v $PWD/config/network/mainnet/genesis:/genesis
80+
-v $PWD/config/network/mainnet/cardano-db-sync:/config \
81+
-v $PWD/config/network/mainnet/genesis:/genesis \
8282
-v $PWD/node-ipc:/node-ipc \
83-
inputoutput/cardano-db-sync \
83+
ghcr.io/input-output-hk/cardano-db-sync:13.1.1.2 \
8484
run --config /config/config.yaml --socket-path /node-ipc/node.socket # command
8585
```
8686

@@ -113,7 +113,7 @@ For `docker-compose`:
113113

114114
```yaml
115115
cardano-db-sync:
116-
image: inputoutput/cardano-db-sync:13.0.5
116+
image: ghcr.io/input-output/cardano-db-sync:13.1.1.2
117117
...
118118
working_dir: /var/lib/cexplorer
119119
volumes:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
max-file: "10"
5454

5555
cardano-db-sync:
56-
image: inputoutput/cardano-db-sync:13.1.1.2
56+
image: ghcr.io/input-output-hk/cardano-db-sync:13.1.1.2
5757
environment:
5858
- DISABLE_LEDGER=${DISABLE_LEDGER}
5959
- NETWORK=${NETWORK:-mainnet}

0 commit comments

Comments
 (0)