diff options
Diffstat (limited to 'stacks/irm/compose.yml')
| -rw-r--r-- | stacks/irm/compose.yml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/stacks/irm/compose.yml b/stacks/irm/compose.yml index 4ba9977..7531465 100644 --- a/stacks/irm/compose.yml +++ b/stacks/irm/compose.yml @@ -1,25 +1,23 @@ -name: ${STACK} # Explicitly name stacks (do not rely on directory name). - networks: - edge-net: + edge_net: name: ${EDGE_NET} external: true # All networks SHOULD be external in production. - db-net: + db_net: name: ${DB_NET} external: true services: irm: - container_name: ${IRM_CONTAINER} # Name the containers explicitly. - image: ${IRM_IMAGE} + image: ghcr.io/linkwarden/linkwarden:latest restart: unless-stopped env_file: # NOTE: .compose.env WILL override .env if there are overlapping values. - - .run.env # Runtime ENV - - .env # Compose ENV + - ${ROOT}/stacks/.env # GLOBAL + - ${CONFIG}/env/irm.env + - ${SECRET}/env/irm.env # SECRETS networks: - - edge-net - - db-net + - edge_net + - db_net expose: - 3000 # Github Issue: https://github.com/linkwarden/linkwarden/issues/1153 |
