Skip to content

Commit

Permalink
nopSolutions#5485 Added postgresql-docker-compose.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
skoshelev committed Mar 2, 2021
1 parent 9a386a1 commit 79cd562
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions postgresql-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3.4"
services:
nopcommerce_web:
build: .
container_name: nopcommerce
ports:
- "80:80"
depends_on:
- nopcommerce_database
nopcommerce_database:
image: "postgres:latest"
container_name: nopcommerce_postgres_server
restart: "always"
environment:
POSTGRES_PASSWORD: "nopCommerce_db_password"

volumes:
nopcommerce_data:

0 comments on commit 79cd562

Please sign in to comment.