Skip to content

Commit 6c93880

Browse files
committed
Rearrange some attributes in compose files
1 parent e545ae4 commit 6c93880

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dockerfiles/docker-compose.awstats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44

55
dachs:
66
container_name: dachs
7-
image: dachs:${INSTALL_REPO:-latest}
7+
image: dachs:latest
88
build:
99
context: ./dachs
1010
args:

dockerfiles/docker-compose.full.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ version: '3'
33
services:
44

55
postgres:
6+
container_name: postgres
7+
image: dachs:postgres
68
build:
7-
context: ./postgres
9+
context: ./dachs
810
args:
911
PG_VERSION: "${PG_VERSION:-13}"
10-
container_name: postgres
11-
image: dachs:postgres
1212
tty: true
1313
network_mode: 'bridge'
1414

1515
dachs:
16+
container_name: dachs
17+
image: dachs:server
18+
depends_on:
19+
- postgres
1620
build:
1721
context: ./dachs
1822
dockerfile: Dockerfile.dachs_server
1923
args:
2024
INSTALL_REPO: "${INSTALL_REPO}"
2125
PG_VERSION: "${PG_VERSION:-13}"
22-
container_name: dachs
23-
image: dachs:server
24-
depends_on:
25-
- postgres
2626
links:
2727
- postgres
2828
tty: true

0 commit comments

Comments
 (0)