Skip to content

Commit

Permalink
Merge pull request #31 from Vizzuality/data/feature/SKY30-68_strapi-u…
Browse files Browse the repository at this point in the history
…ploads

Strapi connection
  • Loading branch information
aagm authored Nov 7, 2023
2 parents f3ce043 + f0ed01d commit 4adc814
Show file tree
Hide file tree
Showing 4 changed files with 1,076 additions and 1 deletion.
19 changes: 18 additions & 1 deletion cms/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
version: "3.9" # optional since v1.27.0
version: "3.9" # optional since v1.27.0
services:
cms:
build: .
ports:
- "1337:1337"
extra_hosts:
- "host.docker.internal:host-gateway"
env_file:
- .env
depends_on:
- db

db:
image: postgres
restart: always
env_file:
- .env
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data

volumes:
db-data:
Loading

0 comments on commit 4adc814

Please sign in to comment.