Skip to content

Commit

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

services:
shiny:
build: .
#image: hicsail/comets_shinyapp:master
container_name: shiny_app
ports:
- "3838:3838"
restart: unless-stopped
postgres:
image: postgres:13
container_name: postgres
environment:
POSTGRES_USER: shiny
POSTGRES_PASSWORD: password
POSTGRES_DB: shiny
ports:
- "5432:5432"
restart: unless-stopped

0 comments on commit 97b3348

Please sign in to comment.