Skip to content
Snippets Groups Projects
Verified Commit 911225aa authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[PicaPlume] Fix secret path in Compose

parent 32806fba
No related branches found
No related tags found
No related merge requests found
Pipeline #62579 waiting for manual action
......@@ -21,17 +21,17 @@ services:
image: registry.picasoft.net/pica-plume:0.4.0
container_name: plume
env_file:
- secrets/plume_db.secrets
- secrets/plume.secrets
- ./secrets/plume_db.secrets
- ./secrets/plume.secrets
environment:
BASE_URL: "blog.picasoft.net"
URL: "blog.picasoft.net"
NAME: "Picablog"
ADMIN_EMAIL: picasoft@assos.utc.fr
volumes:
- "data:/app/static/media"
- "searchidx:/app/search_index"
- "first-launch:/firstlaunch"
- data:/app/static/media
- searchidx:/app/search_index
- first-launch:/firstlaunch
labels:
traefik.frontend.rule: "Host:blog.picasoft.net"
traefik.enable: true
......@@ -44,9 +44,9 @@ services:
plumedb:
image: postgres:12
container_name: plumedb
env_file: plume_db.secrets
env_file: ./secrets/plume_db.secrets
volumes:
- "db:/var/lib/postgresql/data"
- db:/var/lib/postgresql/data
networks:
- plume
restart: unless-stopped
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment