3 Commits

Author SHA1 Message Date
dimti 2695d1f759 Merge branch 'refs/heads/master' into uvicorn 4 weeks ago
dimti 4e0c2dbfc4 * minor local changes - unused shell aliases and some slash 4 weeks ago
dimti 3faf8a698a + root mariadb account default extra file 1 month ago
  1. 3
      config/mariadb/root-account.cnf.example
  2. 2
      docker-compose.base.yml
  3. 4
      docker-compose.yml.example
  4. 6
      dockerfiles/workspace/.bash_aliases.example
  5. 3
      dockerfiles/workspace/.gitignore
  6. 1
      src/dockerfiles/php-fpm/php81.Dockerfile
  7. 2
      src/dockerfiles/workspace/workspace.base.Dockerfile

3
config/mariadb/root-account.cnf.example

@ -0,0 +1,3 @@
[client]
user = root
password = 123456

2
docker-compose.base.yml

@ -74,6 +74,8 @@ services:
inbucket: inbucket:
image: inbucket/inbucket image: inbucket/inbucket
restart: always restart: always
expose:
- 2500
redis: redis:
image: redis image: redis
restart: always restart: always

4
docker-compose.yml.example

@ -55,10 +55,14 @@ services:
extends: extends:
file: docker-compose.base.yml file: docker-compose.base.yml
service: pma service: pma
ports:
- "81:80"
inbucket: inbucket:
extends: extends:
file: docker-compose.base.yml file: docker-compose.base.yml
service: inbucket service: inbucket
ports:
- "82:9000"
dnsmasq: dnsmasq:
restart: always restart: always
build: build:

6
dockerfiles/workspace/.bash_aliases.example

@ -0,0 +1,6 @@
alias gst='git status'
alias ga='git add'
alias gc='git commit -m'
alias gush='git push'
alias gull='git pull'
alias gb='git branch'

3
dockerfiles/workspace/.gitignore

@ -1,2 +1,3 @@
/aliases.sh
/.bash_*
!/.bash_.example
/crontab /crontab

1
src/dockerfiles/php-fpm/php81.Dockerfile

@ -1,4 +1,5 @@
# syntax = edrevo/dockerfile-plus # syntax = edrevo/dockerfile-plus
# https://github.com/docker-library/php/blob/52062af5056d0cd91fa5ded64fad8f9c82847b49/8.1/bookworm/fpm/Dockerfile
FROM php:8.1-fpm FROM php:8.1-fpm
INCLUDE+ ./php.base.Dockerfile INCLUDE+ ./php.base.Dockerfile

2
src/dockerfiles/workspace/workspace.base.Dockerfile

@ -74,7 +74,7 @@ RUN sed -i 's/\r//' /root/aliases.sh && \
echo "" >> ~/.bashrc && \ echo "" >> ~/.bashrc && \
echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \
echo "source ~/aliases.sh" >> ~/.bashrc && \ echo "source ~/aliases.sh" >> ~/.bashrc && \
echo "" >> ~/.bashrc \
echo "" >> ~/.bashrc
########################################################################### ###########################################################################
# ssh: # ssh:

Loading…
Cancel
Save