Skip to content

Instantly share code, notes, and snippets.

@nbertagnolli
Created June 27, 2021 23:18
Show Gist options
  • Save nbertagnolli/c3b71e8f2c58ac45c8dcf0a8d9ea8ae9 to your computer and use it in GitHub Desktop.
Save nbertagnolli/c3b71e8f2c58ac45c8dcf0a8d9ea8ae9 to your computer and use it in GitHub Desktop.
version: '3.8'
services:
movie-app-api:
image: movie-app-api
ports:
- 8000:8000
volumes:
- ./api:/api
networks:
- bridge_network
movie-app-ui:
image: movie-app-ui
ports:
- 8501:8501
volumes:
- ./ui:/ui
networks:
- bridge_network
networks:
bridge_network:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment