Skip to content

Commit

Permalink
Rearrange some attributes in compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
chbrandt committed Nov 18, 2021
1 parent e545ae4 commit 6c93880
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/docker-compose.awstats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:

dachs:
container_name: dachs
image: dachs:${INSTALL_REPO:-latest}
image: dachs:latest
build:
context: ./dachs
args:
Expand Down
14 changes: 7 additions & 7 deletions dockerfiles/docker-compose.full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ version: '3'
services:

postgres:
container_name: postgres
image: dachs:postgres
build:
context: ./postgres
context: ./dachs
args:
PG_VERSION: "${PG_VERSION:-13}"
container_name: postgres
image: dachs:postgres
tty: true
network_mode: 'bridge'

dachs:
container_name: dachs
image: dachs:server
depends_on:
- postgres
build:
context: ./dachs
dockerfile: Dockerfile.dachs_server
args:
INSTALL_REPO: "${INSTALL_REPO}"
PG_VERSION: "${PG_VERSION:-13}"
container_name: dachs
image: dachs:server
depends_on:
- postgres
links:
- postgres
tty: true
Expand Down

0 comments on commit 6c93880

Please sign in to comment.