Skip to content

Commit

Permalink
feat: add production docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfrasco committed Nov 25, 2024
1 parent eadfa88 commit 1f6e81a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions comets_shinyapp_example/docker-compose-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: '3.9'

services:
shiny:
image: hicsail/comets_shinyapp:master
container_name: soil_shiny_app
ports:
- "3838:3838"
restart: unless-stopped
postgres:
image: postgres:13
container_name: soil_db
env_file: ../stack.env
ports:
- "3839:5432"
restart: unless-stopped
volumes:
- soil-volume:/var/lib/postgresql/data

volumes:
soil-volume: ~

0 comments on commit 1f6e81a

Please sign in to comment.