Skip to content

Commit 2bb91b2

Browse files
committed
Some final Docker stuff
1 parent 0837df2 commit 2bb91b2

5 files changed

+43
-43
lines changed

build/dockerize.linux.nobuild.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cd ..
2-
docker build -t smartstore -f NoBuild.Dockerfile .
2+
docker build -t ghcr.io/smartstore/smartstore-linux -f NoBuild.Dockerfile .
33
echo 'Press enter to exit...'; read dummy;

build/dockerize.linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cd ..
2-
docker build -t smartstore .
2+
docker build -t ghcr.io/smartstore/smartstore-linux .
33
echo 'Press enter to exit...'; read dummy;

build/dockerize.windows.nobuild.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cd ..
2-
docker build -t smartstore -f Nano.Dockerfile .
2+
docker build -t ghcr.io/smartstore/smartstore-windows -f Nano.Dockerfile .
33
echo 'Press enter to exit...'; read dummy;

docker-compose.sqlserver.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
services:
2-
web:
3-
volumes:
4-
- "D:/mount/smtenants/sqlserver:/app/App_Data/Tenants"
5-
db:
6-
image: "mcr.microsoft.com/mssql/server"
7-
container_name: sqlserver
8-
environment:
9-
SA_PASSWORD: "Smartstore2022!"
10-
ACCEPT_EULA: "Y"
11-
MSSQL_PID: "Express"
12-
ports:
13-
- '1434:1433'
14-
expose:
15-
- '1433'
16-
volumes:
17-
- mssql_system:/var/opt/mssql/
18-
- mssql_user:/var/opt/sqlserver/
2+
web:
3+
volumes:
4+
- "D:/mount/smtenants/sqlserver:/app/App_Data/Tenants"
5+
db:
6+
image: "mcr.microsoft.com/mssql/server"
7+
container_name: sqlserver
8+
environment:
9+
SA_PASSWORD: "Smartstore2022!"
10+
ACCEPT_EULA: "Y"
11+
MSSQL_PID: "Express"
12+
ports:
13+
- '1434:1433'
14+
expose:
15+
- '1433'
16+
volumes:
17+
- mssql_system:/var/opt/mssql/
18+
- mssql_user:/var/opt/sqlserver/
1919

2020
volumes:
2121
mssql_system:

docker-compose.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
version: "3.4"
22
services:
3-
web:
4-
image: smartstore
5-
container_name: web
6-
ports:
7-
- "80:80"
8-
depends_on:
9-
- db
10-
volumes:
11-
- "D:/mount/smtenants/mysql:/app/App_Data/Tenants"
12-
db:
13-
image: mysql
14-
container_name: mysql
15-
environment:
16-
#MYSQL_DATABASE: smartstore
17-
#MYSQL_USER: "root"
18-
MYSQL_PASSWORD: "Smartstore2022!"
19-
MYSQL_ROOT_PASSWORD: "Smartstore2022!"
20-
ports:
21-
- '3307:3306'
22-
expose:
23-
- '3306'
24-
volumes:
25-
- mysql:/var/lib/mysql
3+
web:
4+
image: ghcr.io/smartstore/smartstore-linux
5+
container_name: web
6+
ports:
7+
- "80:80"
8+
depends_on:
9+
- db
10+
volumes:
11+
- "D:/mount/smtenants/mysql:/app/App_Data/Tenants"
12+
db:
13+
image: mysql
14+
container_name: mysql
15+
environment:
16+
#MYSQL_DATABASE: smartstore
17+
#MYSQL_USER: "root"
18+
MYSQL_PASSWORD: "Smartstore2022!"
19+
MYSQL_ROOT_PASSWORD: "Smartstore2022!"
20+
ports:
21+
- '3307:3306'
22+
expose:
23+
- '3306'
24+
volumes:
25+
- mysql:/var/lib/mysql
2626

2727
volumes:
2828
mysql:

0 commit comments

Comments
 (0)