Changeset 55353
- Timestamp:
- 02/16/2023 03:48:26 AM (19 months ago)
- Location:
- trunk/.devcontainer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.devcontainer/devcontainer.json
r55303 r55353 3 3 "name": "WordPress Core Development", 4 4 "dockerComposeFile": "docker-compose.yml", 5 "service": " wordpress",5 "service": "app", 6 6 "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", 7 7 -
trunk/.devcontainer/docker-compose.yml
r55303 r55353 2 2 3 3 services: 4 wordpress:4 app: 5 5 image: wordpress 6 6 restart: always … … 13 13 WORDPRESS_DB_NAME: exampledb 14 14 volumes: 15 - ../ src:/var/www/html15 - ../..:/workspaces:cached 16 16 17 17 db: 18 18 image: mariadb 19 restart: always19 restart: unless-stopped 20 20 environment: 21 21 MYSQL_DATABASE: exampledb … … 27 27 28 28 volumes: 29 wordpress:30 29 db: -
trunk/.devcontainer/install-tools.sh
-
Property
svn:executable
set to
*
r55303 r55353 8 8 sudo mv wp-cli.phar /usr/local/bin/wp 9 9 10 echo "Installing chromium..." 11 sudo apt-get update 12 sudo apt-get -y install --no-install-recommends chromium 13 10 14 # Copy the welcome message 11 15 sudo cp .devcontainer/welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt -
Property
svn:executable
set to
-
trunk/.devcontainer/setup.sh
-
Property
svn:executable
set to
*
r55303 r55353 3 3 set -eux 4 4 5 if [ "${CODESPACE_NAME}" = ""]; then5 if [ -z ${CODESPACE_NAME+x} ]; then 6 6 SITE_HOST="http://localhost:8080" 7 7 else -
Property
svn:executable
set to
Note: See TracChangeset
for help on using the changeset viewer.