Skip to content

Commit c29dd55

Browse files
authored
Merge pull request #28 from Rolgim/main
rebase from main (docker, docker-compose, init)
2 parents c2ffd74 + fe18187 commit c29dd55

4 files changed

Lines changed: 15 additions & 9 deletions

File tree

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
workspace/
21
__pycache__/
2+
# workspace
3+
*/workspace/*
4+
*/Workspace/*
5+
Workspace/*
6+
workspace/*
7+
*.tiff
38
*.fits
49
*.pyc
510
.venv/
@@ -11,4 +16,4 @@ __pycache__/
1116
htmlcov/
1217
nosetests.xml
1318
coverage.xml
14-
*.cover
19+
*.cover

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ WORKDIR /app
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
66
libgl1 \
7+
libglib2.0-0 \
78
git \
89
&& rm -rf /var/lib/apt/lists/*
910

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
2-
azulweb:
2+
azumy:
33
build: .
4-
image: azulweb
4+
image: azumy
55
ports:
66
- "8000:8000"
77
volumes:
@@ -12,4 +12,4 @@ services:
1212
- IDR_PASS=${IDR_PASS:-}
1313
- DSS_USER=${DSS_USER:-}
1414
- DSS_PASS=${DSS_PASS:-}
15-
restart: unless-stopped
15+
restart: unless-stopped

run.sh

100644100755
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV_FILE=".env"
77
if [ ! -f "$ENV_FILE" ]; then
88
echo ""
99
echo " ╔══════════════════════════════════════╗"
10-
echo " Azulweb — Initial setup ║"
10+
echo "Azumy — Initial setup "
1111
echo " ╚══════════════════════════════════════╝"
1212
echo ""
1313

@@ -55,15 +55,15 @@ fi
5555

5656
# Docker compose
5757
echo ""
58-
echo " Starting Azulweb..."
58+
echo " Starting Azumy..."
5959
echo ""
6060

6161
docker compose --env-file "$ENV_FILE" up --build -d
6262

6363
echo ""
64-
echo "Azulweb is running at http://localhost:8000"
64+
echo "Azumy is running at http://localhost:8000"
6565
echo ""
6666
echo " To stop: docker compose down"
6767
echo " To view logs: docker compose logs -f"
6868
echo " To reconfigure: rm .env && ./run.sh"
69-
echo ""
69+
echo ""

0 commit comments

Comments
 (0)